home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / termsorc.lha / Extras / Source / term-source.lha / termMem.asm < prev    next >
Assembly Source File  |  1995-09-26  |  375b  |  29 lines

  1. **
  2. **    termMem.asm
  3. **
  4. **    Memory management routines
  5. **
  6. **    Copyright © 1990-1995 by Olaf `Olsen' Barthel
  7. **        All Rights Reserved
  8. **
  9.  
  10.     csect    text,0,0,1,2
  11.  
  12.     xref    _FreeVecPooledLocal
  13.     xdef    _FreeVecPooled
  14.  
  15. _FreeVecPooled:
  16.  
  17.     move.l    (sp),a1
  18.     bra    _FreeVecPooledLocal
  19.  
  20.     xref    _AllocVecPooledLocal
  21.     xdef    _AllocVecPooled
  22.  
  23. _AllocVecPooled:
  24.  
  25.     move.l    (sp),a0
  26.     bra    _AllocVecPooledLocal
  27.  
  28.     end
  29.